home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / dancing_princess.swf / scripts / frame_2 / DoAction.as
Text File  |  2007-09-26  |  998b  |  55 lines

  1. stop();
  2. screen_m.swapDepths(999999);
  3. game_start_bt.onRollOver = function()
  4. {
  5.    so1.start(0,1);
  6.    this._xscale = 105;
  7.    this._yscale = 105;
  8. };
  9. game_start_bt.onRollOut = function()
  10. {
  11.    this._xscale = 100;
  12.    this._yscale = 100;
  13. };
  14. game_start_bt.onPress = function()
  15. {
  16.    so1.start(0,1);
  17.    this.gotoAndStop(2);
  18. };
  19. game_start_bt.onRelease = function()
  20. {
  21.    this.gotoAndStop(1);
  22.    gotoAndStop(4);
  23. };
  24. game_start_bt.onReleaseOutside = function()
  25. {
  26.    this.gotoAndStop(1);
  27.    gotoAndStop(4);
  28. };
  29. game_help_bt.onRollOver = function()
  30. {
  31.    so1.start(0,1);
  32.    this._xscale = 105;
  33.    this._yscale = 105;
  34. };
  35. game_help_bt.onRollOut = function()
  36. {
  37.    this._xscale = 100;
  38.    this._yscale = 100;
  39. };
  40. game_help_bt.onPress = function()
  41. {
  42.    so1.start(0,1);
  43.    this.gotoAndStop(2);
  44. };
  45. game_help_bt.onRelease = function()
  46. {
  47.    this.gotoAndStop(1);
  48.    gotoAndStop(3);
  49. };
  50. game_help_bt.onReleaseOutside = function()
  51. {
  52.    this.gotoAndStop(1);
  53.    gotoAndStop(3);
  54. };
  55.